home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 701-725 / 703 / bootx / install bootx < prev    next >
Text File  |  1995-03-18  |  2KB  |  65 lines

  1.  
  2. ; $VER: Install_BootX 1.01 (11.7.92)
  3.  
  4.     failat 20
  5.  
  6.     version >NIL: exec.library 37
  7.     if warn
  8.       echo "*nYou need KickStart 2.0 or higher to use this version of BootX."
  9.       echo "BootX v4.50 was the last version that supported KickStart 1.3."
  10.       echo "*nPlease upgrade your system. Your Amiga will thank you."
  11.       skip End
  12.     endif
  13.  
  14.     if exists C:Installer
  15.       echo "*nRunning the Commodore Installer utility..."
  16.       installer >NIL: installer.script "BootX 5.00" novice expert english
  17.       skip Completed
  18.     else
  19.       echo "*nA script for the Commodore Installer utility has been provided.*n"
  20.  
  21.       echo "However since this program is copyrighted by Commodore Amiga I can"
  22.       echo "not spread it with this release."
  23.       echo "You can find this program on the Install disk that came with your"
  24.       echo "Amiga or in the KickStart 2.x upgrade package."
  25.       echo "Copy the Installer utility to C:."
  26.  
  27.       echo "You are now given the choice to continue to install BootX using the"
  28.       echo "defaults built into this script or to abort the installation and to"
  29.       echo "restart it after you have copied the Installer program in the C:"
  30.       echo "directory.*n"
  31.  
  32.       ask "Shall I continue to install BootX ?"
  33.       if not warn
  34.         skip Aborted
  35.       else
  36.         skip Install
  37.       endif
  38.     endif
  39.  
  40. lab Install
  41.     if not exists Work:Utilities
  42.       echo "*nCreating directory 'Work:Utilities'..."
  43.       makedir Work:Utilities
  44.     endif
  45.  
  46.     echo "Copying BootX and support files..."
  47.     copy BootX#? Work:Utilities quiet clone buffer=0
  48.  
  49.     echo "Copying libraries..."
  50.     copy Libs/#? Libs: quiet clone buffer=0
  51.  
  52.     echo "Copying Locale files..."
  53.     copy Locale Locale: all quiet clone buffer=0
  54.  
  55. lab Completed
  56.     echo "Installation completed.*n"
  57.     skip End
  58.  
  59. lab Aborted
  60.     echo "Installation aborted!*n"
  61.  
  62. lab End
  63.     wait 5
  64.     endcli >NIL:
  65.